home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / raid.null / devRaidNull.c < prev    next >
C/C++ Source or Header  |  1989-07-11  |  1KB  |  39 lines

  1. /* 
  2.  * devRaidNull.c --
  3.  *
  4.  *    Stub module to be used when it is not desireable to link the RAID
  5.  *    driver into the kernel.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * All rights reserved.
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/proto.c,v 1.2 89/01/07 04:12:18 rab Exp $ SPRITE (Berkeley)";
  20. #endif /* not lint */
  21.  
  22. #include "sprite.h"
  23. #include "fs.h"
  24. #include "devBlockDevice.h"
  25.  
  26. DevBlockDeviceHandle *
  27. DevRaidAttach(devicePtr)
  28.     Fs_Device    *devicePtr;    /* The device to attach. */
  29. {
  30.     return (DevBlockDeviceHandle *) NIL;
  31. }
  32.  
  33. DevBlockDeviceHandle *
  34. DevDebugAttach(devicePtr)
  35.     Fs_Device    *devicePtr;    /* The device to attach. */
  36. {
  37.     return (DevBlockDeviceHandle *) NIL;
  38. }
  39.